home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 4 / boot-disc-1996-12.iso / Apps / Cakewalk / PROAUD5 / AD.1 / Major 7th Chord.cal < prev    next >
Text File  |  1996-06-18  |  629b  |  23 lines

  1. ;; Major 7th Chord.cal
  2. ;;
  3. ;; Treats each note as the root of a major 7th chord; creates that chord:
  4. ;; For each note event, adds three note events with same time, vel, and dur
  5. ;; but a major 3rd, a perfect 5th, and a major 7th higher.
  6. ;;
  7.  
  8. (do
  9.     (include "need20.cal")    ; Require version 2.0 or higher of CAL
  10.  
  11.     (forEachEvent
  12.         (if (== Event.Kind NOTE)
  13.            (do
  14.              (insert Event.Time Event.Chan NOTE (+ Note.Key  4) Note.Vel Note.Dur)
  15.              (insert Event.Time Event.Chan NOTE (+ Note.Key  7) Note.Vel Note.Dur)
  16.              (insert Event.Time Event.Chan NOTE (+ Note.Key 11) Note.Vel Note.Dur)
  17.            )
  18.         )
  19.     )
  20. )
  21.  
  22.  
  23.